home *** CD-ROM | disk | FTP | other *** search
- *** ./lib/chat2.pl Thu Jul 23 21:00:53 1998
- --- ../perl5.005_02/./lib/chat2.pl Fri Aug 14 11:06:00 1998
- ***************
- *** 4,12 ****
- # multihome additions by A.Macpherson@bnr.co.uk
- # allow for /dev/pts based systems by Joe Doupnik <JRD@CC.USU.EDU>
-
- - package chat;
- -
- require 'sys/socket.ph';
-
- if( defined( &main'PF_INET ) ){
- $pf_inet = &main'PF_INET;
- --- 4,12 ----
- # multihome additions by A.Macpherson@bnr.co.uk
- # allow for /dev/pts based systems by Joe Doupnik <JRD@CC.USU.EDU>
-
- require 'sys/socket.ph';
- +
- + package chat;
-
- if( defined( &main'PF_INET ) ){
- $pf_inet = &main'PF_INET;
- *** ./lib/ExtUtils/Install.pm Thu Jul 23 21:00:35 1998
- --- ../perl5.005_02/./lib/ExtUtils/Install.pm Fri Aug 14 10:57:06 1998
- ***************
- *** 23,28 ****
- --- 23,38 ----
- unlink $_[0] or Carp::croak("Cannot forceunlink $_[0]: $!")
- }
-
- + use File::Path ();
- + ## begin SGI build environment hack
- + my($sgisrcoffs);
- + sub mkpath
- + {
- + File::Path::mkpath(@_) if (@_ =~ m,blib/, or ! $sgisrcoffs);
- + }
- + ## end SGI build environment hack
- +
- +
- sub install {
- my($hash,$verbose,$nonono,$inc_uninstall) = @_;
- $verbose ||= 0;
- ***************
- *** 34,42 ****
- use File::Basename qw(dirname);
- use File::Copy qw(copy);
- use File::Find qw(find);
- - use File::Path qw(mkpath);
- use File::Compare qw(compare);
-
- my(%hash) = %$hash;
- my(%pack, $dir, $warn_permissions);
- my($packlist) = ExtUtils::Packlist->new();
- --- 44,63 ----
- use File::Basename qw(dirname);
- use File::Copy qw(copy);
- use File::Find qw(find);
- use File::Compare qw(compare);
-
- + ## begin SGI build environment hack
- + if ($ENV{"RAWIDB"} and $ENV{"SRC"}) {
- + my($curdir) = cwd();
- + chdir($ENV{"SRC"}); # I need the physical SRC path
- + my($srcdir) = cwd(); # to compare to the current source dir
- + chdir($curdir);
- + my($sgisrclen) = length($srcdir);
- + open(RAWIDB, ">>$ENV{'RAWIDB'}") or Carp::croak("You do not have permission to append to the $ENV{'RAWIDB'} file");
- + $sgisrcoffs = substr(cwd(),$sgisrclen);
- + $sgisrcoffs = substr($sgisrcoffs, 1) if $sgisrcoffs =~ /^\//;
- + }
- + ## end SGI build environment hack
- my(%hash) = %$hash;
- my(%pack, $dir, $warn_permissions);
- my($packlist) = ExtUtils::Packlist->new();
- ***************
- *** 49,54 ****
- --- 70,77 ----
- }
- my($source_dir_or_file);
- foreach $source_dir_or_file (sort keys %hash) {
- + # SGI build environment hack
- + last if $sgisrcoffs;
- #Check if there are files, and if yes, look if the corresponding
- #target directory is writable for us
- opendir DIR, $source_dir_or_file or next;
- ***************
- *** 98,103 ****
- --- 121,140 ----
- my $targetdir = MY->catdir($targetroot,$File::Find::dir);
- my $targetfile = MY->catfile($targetdir,$_);
-
- + ## begin SGI build environment hack
- + if ($sgisrcoffs) {
- + my($dest) = substr($targetfile, 1);
- + $dest = substr($dest, 1) if $dest =~ /^\//; # strip ^/
- + my($src) = $MY->catfile($sgisrcoffs,$source,$File::Find::dir,$_);
- + $src =~ s,/\./,/,g;
- + $dest =~ s,/\./,/,g;
- + print RAWIDB "f 444 root sys $dest $src";
- + print RAWIDB " $ENV{'IDB'}" if $ENV{'IDB'};
- + print RAWIDB "\n";
- + return;
- + }
- + ## end SGI build environment hack
- +
- my $diff = 0;
- if ( -f $targetfile && -s _ == $size) {
- # We have a good chance, we can skip this one
- ***************
- *** 136,143 ****
- }, ".");
- chdir($cwd) or Carp::croak("Couldn't chdir to $cwd: $!");
- }
- umask $umask unless $Is_VMS;
- ! if ($pack{'write'}) {
- $dir = dirname($pack{'write'});
- mkpath($dir,0,0755);
- print "Writing $pack{'write'}\n";
- --- 173,186 ----
- }, ".");
- chdir($cwd) or Carp::croak("Couldn't chdir to $cwd: $!");
- }
- + ## begin SGI build environment hack
- + if ($sgisrcoffs > 0) {
- + close(RAWIDB);
- + return;
- + }
- umask $umask unless $Is_VMS;
- ! if ($pack{'write'} and ! $sgisrcoffs) {
- ! ## end SGI build environment hack
- $dir = dirname($pack{'write'});
- mkpath($dir,0,0755);
- print "Writing $pack{'write'}\n";
- ***************
- *** 244,250 ****
-
- use File::Basename qw(dirname);
- use File::Copy qw(copy);
- - use File::Path qw(mkpath);
- use File::Compare qw(compare);
- use AutoSplit;
- # my $my_req = $self->catfile(qw(auto ExtUtils Install forceunlink.al));
- --- 287,292 ----
- *** ./lib/ExtUtils/MM_Unix.pm Thu Jul 23 21:00:37 1998
- --- ../perl5.005_02/./lib/ExtUtils/MM_Unix.pm Sat Aug 15 15:46:55 1998
- ***************
- *** 350,356 ****
- echo optdebug=\$optdebug
- echo large=\$large
- echo split=\$split
- ! `;
- my($line);
- foreach $line (@o){
- chomp $line;
- --- 350,356 ----
- echo optdebug=\$optdebug
- echo large=\$large
- echo split=\$split
- ! `; # "
- my($line);
- foreach $line (@o){
- chomp $line;
- ***************
- *** 463,468 ****
- --- 463,505 ----
- my(@m,$m);
- push(@m,"\n# These definitions are from config.sh (via $INC{'Config.pm'})\n");
- push(@m,"\n# They may have been overridden via Makefile.PL or on the command line\n");
- +
- + # SGI: IRIX-build extensions to use $ROOT and $TOOLROOT
- + # pretend that this was added as command-line args.
- + my($root) = $ENV{"ROOT"};
- + my($toolroot) = $ENV{"TOOLROOT"};
- + if (length($root) > 1) {
- + $self->{"CC"}.=" -nostdinc";
- + $self->{"CCFLAGS"} = " -I".
- + $self->catdir($root,"usr/include") ." ". $self->{"CCFLAGS"};
- + if ($self->{"CC"} =~ /-n32/ or $self->{"CCFLAGS"} =~ /-n32/) {
- + $self->{"LDFLAGS"} = " -nostdlib -L".
- + $self->catdir($root,"usr/lib32") ." ". $self->{"LDFLAGS"};
- + $self->{"LDDLFLAGS"} .= " -check_registry " .
- + $self->catdir($root,"usr/lib32", "so_locations");
- + } elsif ($self->{"CC"} =~ /-64/ or $self->{"CCFLAGS"} =~ /-64/) {
- + $self->{"LDFLAGS"} = " -nostdlib -L".
- + $self->catdir($root,"usr/lib64") ." ". $self->{"LDFLAGS"};
- + $self->{"LDDLFLAGS"} .= " -check_registry " .
- + $self->catdir($root,"usr/lib64", "so_locations");
- + } else {
- + $self->{"LDFLAGS"} = " -nostdlib -L".
- + $self->catdir($root,"usr/lib") ." ". $self->{"LDFLAGS"};
- + $self->{"LDDLFLAGS"} .= " -check_registry " .
- + $self->catdir($root,"usr/lib", "so_locations");
- + }
- + }
- + if (length($toolroot) > 1) {
- + $self->{"CC"}=$self->catdir($toolroot,"usr/bin",$self->{"CC"});
- + $self->{"LD"}=$self->catdir($toolroot,"usr/bin",$self->{"LD"});
- + $self->{"AR"}=$self->catdir($toolroot,"usr/bin",$self->{"AR"});
- + }
- + if ($ENV{"INSTALLDIRS"} eq "vendor") {
- + $self->{"INSTALLMAN3DIR"} = "/usr/freeware/catman/u_man/man3";
- + $self->{"INSTALLSCRIPT"} = "/usr/freeware/bin";
- + }
- + # end SGI customizations
- +
- my(%once_only);
- foreach $m (@{$self->{CONFIG}}){
- # SITE*EXP macros are defined in &constants; avoid duplicates here
- ***************
- *** 509,514 ****
- --- 546,569 ----
- my($self) = @_;
- my(@m,$tmp);
-
- + # SGI: IRIX-build extensions to use $ROOT and $TOOLROOT
- + # pretend that this was added as command-line args.
- + if ($ENV{"INSTALLDIRS"} eq "vendor") {
- + $self->{"INSTALLSITELIB"} = $self->catdir($self->{"INSTALLPRIVLIB"},
- + "sgi_perl");
- + $self->{"INSTALLSITEARCH"} = $self->catdir($self->{"INSTALLPRIVLIB"},
- + "sgi_perl");
- + $self->{"SITELIBEXP"} = $self->{"INSTALLSITELIB"};
- + $self->{"SITEARCHEXP"} = $self->{"INSTALLSITEARCH"};
- + $self->{"INSTALLMAN3DIR"} = $self->{"MAN3DIR"} = $self->{"MAN3DIREXP"} =
- + "/usr/share/catman/p_man/man3"; # hard-wired
- + $self->{"INSTALLSCRIPT"} = $self->{"SCRIPTDIR"} =
- + $self->{"SCRIPTDIREXP"} = "/usr/sbin"; # also hard-wired
- + }
- + if ($ENV{"PERL_SRC"}) {
- + $self->{"PERL_SRC"} = $ENV{"PERL_SRC"};
- + }
- + # end of SGI customizations
- for $tmp (qw/
-
- AR_STATIC_ARGS NAME DISTNAME NAME_SYM VERSION
- ***************
- *** 1030,1037 ****
- if ($^O eq 'solaris');
-
- # The IRIX linker also doesn't use LD_RUN_PATH
- ! $ldrun = qq{-rpath "$self->{LD_RUN_PATH}"}
- ! if ($^O eq 'irix' && $self->{LD_RUN_PATH});
-
- push(@m,' LD_RUN_PATH="$(LD_RUN_PATH)" $(LD) -o $@ '.$ldrun.' $(LDDLFLAGS) '.$ldfrom.
- ' $(OTHERLDFLAGS) $(MYEXTLIB) $(PERL_ARCHIVE) $(LDLOADLIBS) $(EXPORT_LIST)');
- --- 1085,1093 ----
- if ($^O eq 'solaris');
-
- # The IRIX linker also doesn't use LD_RUN_PATH
- ! # this breaks ROOT/TOOLROOT builds!!!!!
- ! # $ldrun = qq{-rpath "$self->{LD_RUN_PATH}"}
- ! # if ($^O eq 'irix' && $self->{LD_RUN_PATH});
-
- push(@m,' LD_RUN_PATH="$(LD_RUN_PATH)" $(LD) -o $@ '.$ldrun.' $(LDDLFLAGS) '.$ldfrom.
- ' $(OTHERLDFLAGS) $(MYEXTLIB) $(PERL_ARCHIVE) $(LDLOADLIBS) $(EXPORT_LIST)');
- ***************
- *** 1956,1964 ****
-
- pure_perl_install ::
- }.$self->{NOECHO}.q{$(MOD_INSTALL) \
- ! read }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
- write }.$self->catfile('$(INSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
- ! $(INST_LIB) $(INSTALLPRIVLIB) \
- $(INST_ARCHLIB) $(INSTALLARCHLIB) \
- $(INST_BIN) $(INSTALLBIN) \
- $(INST_SCRIPT) $(INSTALLSCRIPT) \
- --- 2012,2026 ----
-
- pure_perl_install ::
- }.$self->{NOECHO}.q{$(MOD_INSTALL) \
- ! };
- ! unless ($ENV{"$RAWIDB"}) {
- ! push @m,
- ! q{ read }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
- write }.$self->catfile('$(INSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
- ! };
- ! }
- ! push @m,
- ! q{ $(INST_LIB) $(INSTALLPRIVLIB) \
- $(INST_ARCHLIB) $(INSTALLARCHLIB) \
- $(INST_BIN) $(INSTALLBIN) \
- $(INST_SCRIPT) $(INSTALLSCRIPT) \
- ***************
- *** 1970,1978 ****
-
- pure_site_install ::
- }.$self->{NOECHO}.q{$(MOD_INSTALL) \
- ! read }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \
- write }.$self->catfile('$(INSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').q{ \
- ! $(INST_LIB) $(INSTALLSITELIB) \
- $(INST_ARCHLIB) $(INSTALLSITEARCH) \
- $(INST_BIN) $(INSTALLBIN) \
- $(INST_SCRIPT) $(INSTALLSCRIPT) \
- --- 2032,2046 ----
-
- pure_site_install ::
- }.$self->{NOECHO}.q{$(MOD_INSTALL) \
- ! };
- ! unless ($ENV{"$RAWIDB"}) {
- ! push @m,
- ! q{ read }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \
- write }.$self->catfile('$(INSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').q{ \
- ! };
- ! }
- ! push @m,
- ! q{ $(INST_LIB) $(INSTALLSITELIB) \
- $(INST_ARCHLIB) $(INSTALLSITEARCH) \
- $(INST_BIN) $(INSTALLBIN) \
- $(INST_SCRIPT) $(INSTALLSCRIPT) \
- *** ./lib/ExtUtils/Liblist.pm Wed Aug 5 16:02:22 1998
- --- ../perl5.005_02/./lib/ExtUtils/Liblist.pm Sat Aug 15 13:46:34 1998
- ***************
- *** 41,46 ****
- --- 41,54 ----
- my($fullname, $thislib, $thispth, @fullname);
- my($pwd) = cwd(); # from Cwd.pm
- my($found) = 0;
- + # SGI product build extension:
- + if (length($ENV{"ROOT"}) > 1) {
- + # $ROOT overrides standard library search path
- + @libpath = map($_ = $self->catdir($ENV{"ROOT"}, $_), @libpath);
- + $potential_libs = join(" ", map($_ = "-L$_", @libpath)) . " "
- + . $potential_libs;
- + push(@ldloadlibs, "-nostdlib");
- + }
-
- foreach $thislib (split ' ', $potential_libs){
-
- *** ./lib/ExtUtils/MakeMaker.pm Thu Jul 23 21:00:40 1998
- --- ../perl5.005_02/./lib/ExtUtils/MakeMaker.pm Sat Aug 15 13:42:35 1998
- ***************
- *** 60,66 ****
- sub DESTROY {}
- }
-
- ! # "predeclare the package: we only load it via AUTOLOAD
- # but we have already mentioned it in @ISA
- package ExtUtils::Liblist;
-
- --- 60,66 ----
- sub DESTROY {}
- }
-
- ! # predeclare the package: we only load it via AUTOLOAD
- # but we have already mentioned it in @ISA
- package ExtUtils::Liblist;
-
- ***************
- *** 506,511 ****
- --- 506,514 ----
- $v =~ tr/\n/ /s;
- push @{$self->{RESULT}}, "# $key => $v";
- }
- +
- + # SGI-specific: turn off parallel-make
- + push @{$self->{RESULT}}, "\n# SGI: no parallel make\n.MAKEFLAGS: -J 1";
-
- # turn the SKIP array into a SKIPHASH hash
- my (%skip,$skip);
- *** ./x2p/cflags.SH Thu Jul 23 21:02:58 1998
- --- ../perl5.005_02/./x2p/cflags.SH Fri Aug 14 11:07:11 1998
- ***************
- *** 84,89 ****
- --- 84,97 ----
-
- ccflags="`echo $ccflags | sed -e 's/-DMULTIPLICITY//'`"
-
- + # SGI-ism for ROOT/TOOLROOT build
- + if test -n "$TOOLROOT"; then
- + cc=`echo "$TOOLROOT/usr/bin/$cc" | sed -e "s,//,/,g"`
- + fi
- + if test -n "$ROOT"; then
- + ccflags=`echo "$ccflags -nostdinc -I$ROOT/usr/include" | sed -e "s,//,/,g"`
- + fi
- +
- echo "$cc -c $ccflags $optimize $large $split"
- eval "$also "'"$cc -c $ccflags $optimize $large $split"'
-
- *** ./pp.c Tue Aug 4 14:58:01 1998
- --- ../perl5.005_02/./pp.c Tue Aug 11 10:52:12 1998
- ***************
- *** 1574,1582 ****
- if (value == 0.0)
- value = 1.0;
- if (!srand_called) {
- ! (void)my_srand((unsigned)seed());
- srand_called = TRUE;
- }
- #if RANDBITS == 31
- value = my_rand() * value / 2147483648.0;
- #else
- --- 1574,1589 ----
- if (value == 0.0)
- value = 1.0;
- if (!srand_called) {
- ! #if RANDBITS == 48
- ! (void)srand48((long)seed());
- ! #else
- ! (void)my_srand((unsigned)seed());
- ! #endif
- srand_called = TRUE;
- }
- + #if RANDBITS == 48
- + value = drand48() * value;
- + #else
- #if RANDBITS == 31
- value = my_rand() * value / 2147483648.0;
- #else
- ***************
- *** 1590,1595 ****
- --- 1597,1603 ----
- #endif
- #endif
- #endif
- + #endif
- XPUSHn(value);
- RETURN;
- }
- ***************
- *** 1602,1608 ****
- --- 1610,1620 ----
- anum = seed();
- else
- anum = POPu;
- + #if RANDBITS == 48
- + (void)srand48((long)anum);
- + #else
- (void)my_srand((unsigned)anum);
- + #endif
- srand_called = TRUE;
- EXTEND(SP, 1);
- RETPUSHYES;
- *** ./config_h.SH Thu Jul 23 20:59:41 1998
- --- ../perl5.005_02/./config_h.SH Sun Aug 16 09:41:16 1998
- ***************
- *** 1605,1614 ****
- --- 1605,1619 ----
- * C preprocessor can make decisions based on it. It is only
- * defined if the system supports long long.
- */
- + /* USE_LONG_LONG:
- + * This symbol says to enable the experimental UV == long long
- + * code.
- + */
- #$d_longlong HAS_LONG_LONG /**/
- #ifdef HAS_LONG_LONG
- #define LONGLONGSIZE $longlongsize /**/
- #endif
- + #$d_uselonglong USE_LONG_LONG /**/
-
- /* HAS_SETGROUPS:
- * This symbol, if defined, indicates that the setgroups() routine is
- *** ./cflags.SH Thu Jul 23 20:59:40 1998
- --- ../perl5.005_02/./cflags.SH Fri Aug 14 10:52:48 1998
- ***************
- *** 124,129 ****
- --- 124,140 ----
- optimize="$optdebug"
- fi
-
- + # SGI-ism for ROOT/TOOLROOT build
- + if test -s "perl.cfb" ; then
- + CFB="-fb perl.cfb";
- + fi
- + if test -n "$TOOLROOT"; then
- + cc=`echo "$TOOLROOT/usr/bin/$cc $CFB" | sed -e "s,//,/,g"`
- + fi
- + if test -n "$ROOT"; then
- + ccflags=`echo "$ccflags -nostdinc -I$ROOT/usr/include" | sed -e "s,//,/,g"`
- + fi
- +
- : Can we perhaps use $ansi2knr here
- echo "$cc -c -DPERL_CORE $ccflags $optimize $perltype $large $split"
- eval "$also "'"$cc -DPERL_CORE -c $ccflags $optimize $perltype $large $split"'
- *** ./installman Thu Jul 23 21:00:23 1998
- --- ../perl5.005_02/./installman Sun Aug 23 14:24:58 1998
- ***************
- *** 23,37 ****
- $usage =
- "Usage: installman --man1dir=/usr/wherever --man1ext=1
- --man3dir=/usr/wherever --man3ext=3
- ! --notify --help
- Defaults are:
- man1dir = $Config{'installman1dir'};
- man1ext = $Config{'man1ext'};
- man3dir = $Config{'installman3dir'};
- man3ext = $Config{'man3ext'};
- --notify (or -n) just lists commands that would be executed.\n";
-
- ! GetOptions( qw( man1dir=s man1ext=s man3dir=s man3ext=s notify n help))
- || die $usage;
- die $usage if $opt_help;
-
- --- 23,38 ----
- $usage =
- "Usage: installman --man1dir=/usr/wherever --man1ext=1
- --man3dir=/usr/wherever --man3ext=3
- ! --packdir=/usr/whatever/ --notify --help
- Defaults are:
- man1dir = $Config{'installman1dir'};
- man1ext = $Config{'man1ext'};
- man3dir = $Config{'installman3dir'};
- man3ext = $Config{'man3ext'};
- + packdir = $Config{'installarchlib'};
- --notify (or -n) just lists commands that would be executed.\n";
-
- ! GetOptions( qw( man1dir=s man1ext=s man3dir=s man3ext=s packdir=s notify n help))
- || die $usage;
- die $usage if $opt_help;
-
- ***************
- *** 40,45 ****
- --- 41,47 ----
- $man1ext = defined($opt_man1ext) ? $opt_man1ext : $Config{'man1ext'};
- $man3dir = defined($opt_man3dir) ? $opt_man3dir : $Config{'installman3dir'};
- $man3ext = defined($opt_man3ext) ? $opt_man3ext : $Config{'man3ext'};
- + $packdir = defined($opt_packdir) ? $opt_packdir : $Config{'installarchlib'};
-
- $notify = $opt_notify || $opt_n;
-
- ***************
- *** 53,59 ****
- -x "t/perl$Config{exe_ext}" || warn "WARNING: You've never run 'make test'!!!",
- " (Installing anyway.)\n";
-
- ! $packlist = ExtUtils::Packlist->new("$Config{installarchlib}/.packlist");
-
- # Install the main pod pages.
- runpod2man('pod', $man1dir, $man1ext);
- --- 55,61 ----
- -x "t/perl$Config{exe_ext}" || warn "WARNING: You've never run 'make test'!!!",
- " (Installing anyway.)\n";
-
- ! $packlist = ExtUtils::Packlist->new("$packdir/.packlist");
-
- # Install the main pod pages.
- runpod2man('pod', $man1dir, $man1ext);
- *** ./Makefile.SH Thu Jul 23 20:59:30 1998
- --- ../perl5.005_02/./Makefile.SH Fri Aug 14 17:01:20 1998
- ***************
- *** 90,95 ****
- --- 90,114 ----
- base=`echo "$f" | sed 's/.*\///'`
- nonxs_list="$nonxs_list ext/$f/pm_to_blib"
- done
- + # SGI-specific for building in the cross-compilation environment.
- +
- + case "$cc" in
- + *"-n32"*) ABILIB="32" ;;
- + *"-64"*) ABILIB="64" ;;
- + *"-32"*|*) ABILIB="" ;;
- + esac
- +
- + if test -n "$TOOLROOT"; then
- + if test -s perl.cfb; then
- + CFB="-fb perl.cfb"
- + fi
- + cc=`echo "$TOOLROOT/usr/bin/$cc $CFB" | sed -e "s,//,/,g"`
- + ld=`echo "$TOOLROOT/usr/bin/$ld $CFB" | sed -e "s,//,/,g"`
- + fi
- + if test -n "$ROOT"; then
- + ldflags=`echo "$ldflags -nostdlib -L$ROOT/usr/lib$ABILIB -L$ROOT/lib$ABILIB" | sed -e "s,//,/,g"`
- + lddlflags=`echo "$lddlflags -check_registry $ROOT/usr/lib$ABILIB/so_locations" | sed -e "s,//,/,g"`
- + fi
-
- echo "Extracting Makefile (with variable substitutions)"
- $spitshell >Makefile <<!GROK!THIS!
- *** ./utils/h2ph.PL Thu Jul 23 21:02:28 1998
- --- ../perl5.005_02/./utils/h2ph.PL Mon Aug 24 21:32:30 1998
- ***************
- *** 230,238 ****
- print OUT $t,"}\n";
- } elsif(/^undef\s+(\w+)/) {
- print OUT $t, "undef(&$1) if defined(&$1);\n";
- ! } elsif(/^error\s+(.*)/) {
- print OUT $t, "die(\"$1\");\n";
- ! } elsif(/^warning\s+(.*)/) {
- print OUT $t, "warn(\"$1\");\n";
- } elsif(/^ident\s+(.*)/) {
- print OUT $t, "# $1\n";
- --- 230,238 ----
- print OUT $t,"}\n";
- } elsif(/^undef\s+(\w+)/) {
- print OUT $t, "undef(&$1) if defined(&$1);\n";
- ! } elsif(/^error\s+"?([^"\n]*)/) {
- print OUT $t, "die(\"$1\");\n";
- ! } elsif(/^warning\s+"?([^"\n]*)/) {
- print OUT $t, "warn(\"$1\");\n";
- } elsif(/^ident\s+(.*)/) {
- print OUT $t, "# $1\n";
- *** ./Configure Fri Aug 7 14:38:53 1998
- --- ../perl5.005_02/./Configure Sat Aug 15 00:01:56 1998
- ***************
- *** 1143,1149 ****
- case "$fastread$alldone" in
- yescont|yesexit) ;;
- *)
- ! if test ! -t 0; then
- echo "Say 'sh Configure', not 'sh <Configure'"
- exit 1
- fi
- --- 1143,1149 ----
- case "$fastread$alldone" in
- yescont|yesexit) ;;
- *)
- ! if test "$extractsh" != "true" -a ! -t 0; then
- echo "Say 'sh Configure', not 'sh <Configure'"
- exit 1
- fi
-